-
Notifications
You must be signed in to change notification settings - Fork 1
feat(SpringBoot4): bump to spring boot 4 and gradle 8.14 #1123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
Coverage Report for frontend
File Coverage
|
||||||||||||||||||||||||||||||||||||||||||||
|
|
||
| val isSentryEnabled: String? = ctx.environment.getProperty("sentry.enabled") | ||
| val sentryDsn: String? = System.getenv("SENTRY_DSN") | ||
|
|
||
| if (isSentryEnabled == "true") { | ||
| Sentry.init { options -> | ||
| options.environment = System.getenv("ENV_PROFILE") | ||
| options.dsn = sentryDsn | ||
| options.proxy = SentryOptions.Proxy( | ||
| System.getenv("PROXY_HOST"), | ||
| System.getenv("PROXY_PORT"), | ||
| ) | ||
| options.tracesSampleRate = 1.0 | ||
| } | ||
| } | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
J'ai viré ce code là.
Il suffit de mettre ces propriétés dans application-propertioes.yml et ca s'occupe de tout tout seul
backend/src/main/kotlin/fr/gouv/dgampa/rapportnav/config/JacksonConfig.kt
Show resolved
Hide resolved
...n/kotlin/fr/gouv/dgampa/rapportnav/domain/entities/mission/env/envActions/EnvActionEntity.kt
Show resolved
Hide resolved
...gouv/dgampa/rapportnav/domain/entities/mission/env/envActions/EnvActionSurveillanceEntity.kt
Show resolved
Hide resolved
| private val getFishActionsByMissionId: GetFishActionsByMissionId, | ||
| private val attachControlsToActionControl: AttachControlsToActionControl, | ||
| private val mapper: ObjectMapper | ||
| private val mapper: JsonMapper |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A la place d'ObjectMapper pour le JSON, Jackson3 a maintenant une classe dédiée qui est JsonMapper
eb85d34 to
27b143c
Compare
|
|
No description provided.